The HTML tag shows a part of text taken out from a document. This can be used when showing changed parts in a document or comparing two versions of code, for instance. The <ins> element can be used for the opposite purpose: to show words added to the paper.
The <del> tag shows text that has been removed from a document. Usually, browsers will put a line through text that is deleted.
HTML Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset ="UTF-8">
<!--This is our webpage it's our very first webpage-->
<title>Levoric | HTML Fundamentle Tutorial</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Write your content here levoriclearn top degree online and program-->
<p>
The original text was:
<del>This is some old content that has been removed.</del>
</p>
<p>
The revised text is:
<del>This is some old content that has been removed.</del>
<ins>This is some new content that has been added.</ins>
</p>
<!--Write your content here levoriclearn top degree online and program-->
<p>
the <ins> element is used to indicate the added text, and the <del> element shows the deleted text for comparison. This can be useful when displaying changes between different versions of a document.
</p>
</body>
</html>